ChatbotPage

fun ChatbotPage(modifier: Modifier = Modifier, viewModel: ChatbotViewModel = hiltViewModel(), onNavigateToChatList: () -> Unit, openDrawer: () -> Unit)

Composable function for displaying the chatbot page.

Parameters

modifier

The modifier to be applied to the ChatbotPage.

viewModel

The ViewModel that provides the data and logic for the chatbot.

onNavigateToChatList

Lambda function for navigating to the chat list.

openDrawer

Lambda function for opening the app drawer.